Copies the value of text, and return it all in lowercase.
-
String return - a String variable to hold the lowercased text.
function main() {
Var:String myStr = "Hello World";
String:ToLower(myStr, myStr)
Konsol:Log(myStr) //see the log for "hello world"
}